home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cgazv5n4.arc / HYPHEN.MAK < prev    next >
Text File  |  1991-09-23  |  692b  |  20 lines

  1. #--- Listing 4 ---------------------- HYPHEN.MAK ---------------
  2. # Make hyphen with the Borland C/C++
  3. #
  4. # The -DDEBUG creates a #define DEBUG in the compiled file.
  5. # In this case, a main module is compiled so that the sub-
  6. # routines form a stand-alone test program. Usage is:
  7. #            hyphen <test_input >output
  8. #            hyphen -- <test_input >output
  9. #
  10. # If any command-line arguments are present, debugging diagnos-
  11. # tics that trace the state machine's operation are included.
  12. #
  13. .c.obj:
  14.         bcc -c -v -DDEBUG $*.c
  15.  
  16. hyphen.exe:     hyphen.obj except.obj
  17.         bcc -v hyphen.obj except.obj
  18.  
  19. hyphen.obj:     hyphen.c hyphen.h
  20. except.obj:     except.c hyphen.h